CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - search tree

搜索资源列表

  1. ch07

    0下载:
  2. 二元搜尋樹簡單易懂,不過有一個問題:它並非平衡樹。本章將介紹平衡的 AVL 搜尋樹,討論它的資料結構、函式,並設計程式使用它。 -Simple binary search tree, but there is a problem: it is not a balanced tree. This chapter will introduce a balanced AVL search tree, to discuss its information structure, function, and
  3. 所属分类:Project Design

    • 发布日期:2017-04-27
    • 文件大小:95477
    • 提供者:李南
  1. ACMsearchTREE

    0下载:
  2. ACM竞赛的一些搜索剪枝算法的应用,供大家学习-ACM search tree
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-29
    • 文件大小:158827
    • 提供者:lin
  1. suffixtree

    0下载:
  2. this is an implement of suffix tree in java which is used as search in dectionary
  3. 所属分类:Graph program

    • 发布日期:2017-04-14
    • 文件大小:3377
    • 提供者:NeeL
  1. BinarySearchTree

    0下载:
  2. 这个文件提供的C++代码实现的二叉搜索树。这是一种高效的数据结构。非常有参考价值。-The file is about binary search tree.It is implemented with C++ language.This structur is very efficient.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:1357
    • 提供者:刘志福
  1. binarysearchtree

    0下载:
  2. 叉查找树示例|二叉查找树,binary search tree,C语言-binary search tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2131
    • 提供者:bobo
  1. RBTreeCode

    0下载:
  2. 红黑树和二叉查找树数据结构的实现以及二者的性能比较的C语言实现代码-Red and black binary search tree and the tree data structure, as well as the achievement of the performance comparison between the C language code
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-27
    • 文件大小:235091
    • 提供者:张辉
  1. search

    0下载:
  2. 以深度为k的满二叉树(n=2k-1)为例,假设表中每个记录的查找概率相等,即 pi=1/n(1≤i≤n),而树的第i层上有2i-1个结点,因此,折半查找的平均查找长度为: 所以,折半查找的平均时间复杂度为O(log2n)。 -To a depth of k over the binary tree (n = 2k-1) as an example, suppose the table to find the probability of each record the same,
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:1100
    • 提供者:zy
  1. csc562HW1Sol

    0下载:
  2. The search tree has a branching factor of 4. All edges have unit costs except those that go to states 5, 8 and 9 (cost 3). The node-counts given below include the start and the goal nodes (if you indicate otherwise and your answers are consistent the
  3. 所属分类:TreeView

    • 发布日期:2017-04-26
    • 文件大小:23685
    • 提供者:artm
  1. btree

    0下载:
  2. 数据库的应用,基于索引,实现一个简单的B+树搜索树 -Database application, based on the index, the realization of a simple B+ tree search tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-29
    • 文件大小:9597
    • 提供者:julia
  1. AVLTree

    0下载:
  2. 用C实现的AVL搜索树的完整源码,包括插入操作和删除操作的具体实现,以及平衡的调整-AVL with C achieved a complete search tree source code, including the insertion operation and deletion of concrete realization, as well as the adjustment of balance
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:4308
    • 提供者:韩雪莲
  1. ex2list

    0下载:
  2. 二元樹搜尋 利用物件導向的技術建立二元搜尋樹 包含了所有用物件導向寫的程序-Binary tree search using object-oriented technology to build a binary search tree that contains all written using object-oriented program
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:1271
    • 提供者:鄭龍磻
  1. BST

    0下载:
  2. This is an implementation of the Binary Search Tree algorithm.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-15
    • 文件大小:6175
    • 提供者:SAS
  1. binstree

    0下载:
  2. To learn the representation and implementation of a binary search tree.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-14
    • 文件大小:2676
    • 提供者:Wally
  1. OptimalBST

    0下载:
  2. 用C++构造的最优二分检索树,是学习算法的很好参考-This programe construct a Optical Binary Search Tree. It is the good reference to learn Anrithlog.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-29
    • 文件大小:11282
    • 提供者:苏玉秦
  1. Bintree

    0下载:
  2. 建立二叉树,搜索二叉树等,实现了二叉树的常用功能-The establishment of tree, search tree and so on, to achieve a common feature tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:93739
    • 提供者:xdb
  1. bstcnt(1)

    0下载:
  2. 二叉搜索树(Binary Search Tree)是满足如下性质的二叉树: ①若它的左子树非空,则左子树上所有结点的值均小于根结点的值; ②若它的右子树非空,则右子树上所有结点的值均大于根结点的值; ③左、右子树本身又各是一棵二叉搜索树。-Binary Search Tree (Binary Search Tree) is to meet the nature of the binary tree as follows: ① If its non-empty left subtree
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-02
    • 文件大小:190221
    • 提供者:czjy
  1. BSTREE

    0下载:
  2. Binary Search Tree Implementation with extra features like Maximum Depth of a tree, Minimum element in the BST and Mirroring of BST.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-04
    • 文件大小:1404
    • 提供者:gowdd
  1. BST

    0下载:
  2. 数据结构中的二叉搜索树,对于插入和遍历的功能,有动画显示-data struct ,binary search tree , can antimate the process of the insert and travel function of binary search tree
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:2733574
    • 提供者:lin
  1. ThreeColor

    0下载:
  2. 采用回溯法,利用动态搜索树的数据结构来构造一棵解树,实现3着色问题。 本程序使用迭代回溯算法-The use of retrospective law, the use of dynamic search tree data structure to construct a solution tree, the realization of 3 coloring problem. This procedure backtracking algorithm using iterative
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2452
    • 提供者:jay
  1. BSTREEE

    0下载:
  2. binary search tree is umplemented using data structures in C-binary search tree is umplemented using data structures in C++
  3. 所属分类:software engineering

    • 发布日期:2017-04-05
    • 文件大小:1641
    • 提供者:farhan
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 50 »
搜珍网 www.dssz.com